1. 首页 > 宝宝起名

生辰八字不收费查询五行命

生辰八字,又称四柱八字,是中国传统命理学中的一种占卜术,用出生年月日時的天干地支来推算出一个人的五行命理。通过查询生辰八字,可以了解一个人的命运、吉凶、运势等方面的信息。下面提供生辰八字免费查询五行命的服务,只需输入您的出生年月日時,即可免费查询您的五行命理。

const form = document.querySelector("form");const result = document.querySelector("result");form.addEventListener("submit", (e) => {e.preventDefault();const year = document.querySelector("year").value;const month = document.querySelector("month").value;const day = document.querySelector("day").value;const hour = document.querySelector("hour").value;const data = {year: year,month: month,day: day,hour: hour,};fetch("api.php", {method: "POST",headers: {"Content-Type": "application/json",},body:JSON.stringify(data),}).then((res) => res.json()).then((data) => {result.innerHTML = data.result;}).catch((error) => {console.error("Error querying五行命:", error);alert("查询五行命失败,请稍后再试。");});});